Oracle Certified Professional, Java SE 8 Programmer
1Z0-809 Java SE 8 Programmer II
Java SE 8 Programming: Concurrency, Parallelism, the JDBC API, and Localization
Java SE 8 Programming: Date/Time API, I/O and File I/O (NIO.2), and Concurrency
Java SE 8 Programming: Encapsulation, Polymorphism, and Abstraction
Java SE 8 Programming: Inheritance, Interfaces, Exceptions, and Deployment
Java SE 8 Programming: Interfaces, Lambda Expressions, Collections, and Generics
Mentoring 1Z0-809 Java SE 8 Programmer II
TestPrep 1Z0-809 Java SE 8 Programmer II

Java SE 8 Programming: Concurrency, Parallelism, the JDBC API, and Localization

Course Number:
jl_sepr_a05_it_enus
Lesson Objectives

Java SE 8 Programming: Concurrency, Parallelism, the JDBC API, and Localization

  • start the course
  • describe operating system task scheduling in Java
  • describe how to use an ExecutorService to concurrently execute tasks
  • identify potential threading problems
  • describe how to use synchronized code blocks to manage atomicity
  • describe how to use the java.util.concurrent collections to manage threads
  • create a network client using the java.util.concurrent package
  • learn how to implement inheritance, interfaces, handle exceptions, and deploy a Java application
  • describe the need for parallelism in modern systems
  • describe the Fork-Join framework in Java
  • implement the Java Fork-Join framework
  • review the key characteristics of streams in Java
  • describe how to make a stream pipeline execute in parallel in Java
  • list the key assumptions needed to use a parallel pipeline
  • define reduction in relation to streams in Java
  • describe the process for decomposing and then merging work in a Java stream
  • list the key performance considerations for parallel streams in Java
  • perform calculations without a stream pipeline and with a pipeline
  • learn how to implement inheritance, interfaces, handle exceptions, and deploy a Java application
  • define the Java database connectivity application program interface or JDBC API and describe how to use it to connect to a database, submit queries, and retrieve results
  • describe how to perform the Create Retrieve Update Delete or CRUD operations using the Java database connectivity application program interface or JDBC API
  • manage operation performed using the Java database connectivity application program interface or JDBC API
  • work with the Derby database and Java database connectivity or JDBC
  • describe the benefits of a properties file and how to load and use properties files for Java applications
  • describe resource bundles
  • describe how to apply local formats to date and currency values in Java
  • learn how to implement inheritance, interfaces, handle exceptions, and deploy a Java application

Overview/Description
Java, an object-oriented programming language, is one of the most widely used development languages in the world today. It allows programmers to create objects that can interact with other objects to solve a problem. This course covers how to implement parallelism with the Fork-Join framework and it covers using parallel streams. It explores the layout of the Java database connectivity application program interface or JDBC API, as well as connecting to a database by using a JDBC driver, submitting queries and getting results from the database, specifying JDBC driver information externally, and using transactions with JDBC. The advantages of localizing an application, defining locales, building a resource bundle for each locale, calling a resource bundle from an application, changing the locale for a resource bundle, and formatting text for localization by using NumberFormat and DateFormat are also covered. This course can be used to as part of preparation for the Oracle Certified Professional, Java SE 8 Programmer II exam.

Target Audience
Programmers who have basic experience with the Java language, and who can create, compile, and execute Java programs

Java SE 8 Programming: Date/Time API, I/O and File I/O (NIO.2), and Concurrency

Course Number:
jl_sepr_a04_it_enus
Lesson Objectives

Java SE 8 Programming: Date/Time API, I/O and File I/O (NIO.2), and Concurrency

  • start the course
  • describe the java.time application program interface or API
  • use the LocalDate class to display a date in Java
  • use the LocalTime class to display a time in Java
  • use the LocalDateTime class to display a date and time in Java
  • describe how to work with dates and times across time zones in Java
  • work with dates and times across different time zones in a Java application
  • describe how to use classes, interfaces, and methods associated with date and time in Java
  • format dates in Java
  • practice working with local dates and times in Java
  • describe the basics of input and output in Java
  • describe how to work with input and output streams in byte format in Java
  • describe how to work with input and output streams in character format in Java
  • describe how input and output streams are chained in Java
  • describe how to read and write data from the console
  • describe how to write and read objects using serialization
  • serialize and deserialize a ShoppingCart object using Java
  • practice writing a simple Java console I/O application
  • describe how to use the Path interface to operate on file and directory paths
  • describe how to use the Files class to check, delete, copy, or move a file or directory
  • describe how to use the Stream application program interface or API with NIO.2
  • read text files using new features in Java 8 and the lines method
  • practice listing directories and files using new features found in Java 8

Overview/Description
Java, an object-oriented programming language, is one of the most widely used development languages in the world today. It allows programmers to create objects that can interact with other objects to solve a problem. This course covers how to work with date and time values using the java.time API. The basics of input and output in Java, reading data from and writing data to the console, using streams to read and write files, and reading and writing objects by using serialization are also covered. Additionally, the course covers File I/O (NIO.2). Finally, it covers implementing concurrency in Java applications, including how to examine operating system task scheduling, define, create, and manage threads, synchronize threads for accessing shared data, identify potential threading problems, and use the java.util.concurrent library. This course can be used to as part of preparation for the Oracle Certified Professional, Java SE 8 Programmer II exam.

Target Audience
Programmers who have basic experience with the Java language, and who can create, compile, and execute Java programs

Java SE 8 Programming: Encapsulation, Polymorphism, and Abstraction

Course Number:
jl_sepr_a01_it_enus
Lesson Objectives

Java SE 8 Programming: Encapsulation, Polymorphism, and Abstraction

  • start the course
  • recall the features of Java technology and describe Java Community Process or JCP
  • recall the structure of a simple Java class with a main method, Java naming conventions, and how to compile and run a program
  • recall primitive variables and operators in Java
  • recall use of if-else and switch statements, iteration with loops, and creating arrays in Java
  • recall String and StringBuilder classes for working with strings in Java
  • recall Java fields, constructors, and methods
  • describe how to use encapsulation in Java class design
  • describe how to create and use Java subclasses
  • describe how methods and constructors can be overloaded in Java
  • use access levels, such as private, protected, default, and public, in Java classes
  • describe how to override methods in Java and use virtual method invocation
  • describe how to apply polymorphism in Java
  • override and overload methods and apply polymorphism in Java
  • implementing casting in Java
  • describe how to work with static classes in Java
  • describe how to implement the singleton design pattern
  • describe how to create an immutable class in Java
  • describe how to design general purpose base classes by using abstract classes in Java
  • apply the Abstract keyword to a Java class
  • describe how the final keyword can be used in Java
  • describe how to create and use nested classes in Java
  • implement an inner class as a helper class in Java
  • describe how to create and use enumerations in Java
  • learn how to use encapsulation, polymorphism, and abstraction in Java 8 programming

Overview/Description
Java, an object-oriented programming language, is one of the most widely used development languages in the world today. It allows programmers to create objects that can interact with other objects to solve a problem. This course begins by reviewing Java syntax and Java classes. It goes on to cover encapsulation and polymorphism in detail. It covers static classes, immutable classes, and the singleton design pattern. It also covers abstract classes, nested classes, and working with enumerations. This course can be used as part of preparation for the Oracle Certified Professional, Java SE 8 Programmer II exam.

Target Audience
Programmers who have basic experience with the Java language, and who can create, compile, and execute Java programs

Java SE 8 Programming: Inheritance, Interfaces, Exceptions, and Deployment

Course Number:
jl_sepr_a03_it_enus
Lesson Objectives

Java SE 8 Programming: Inheritance, Interfaces, Exceptions, and Deployment

  • start the course
  • describe how to implement the core interfaces – Predicate, Consumer, Function, and Supplier – in the java.util.function package
  • describe how to use the primitive versions of built-in functional interfaces in Java
  • describe how to use the binary versions of built-in functional interfaces in Java
  • describe how to use the UnaryOperator functional interface in Java
  • practice creating a consumer, function supplier, and bipredicate lambda expression in Java
  • describe the types of stream operations in Java and overview map and peek
  • describe the map, flatMap, and peek methods in the Stream application programming interface or API, extract data from an object using map, and return data elements to a stream using peek
  • describe the java.util.stream search methods, and their use of optional classes and lazy processing
  • compare forEach loop to a findFirst short-circuit terminal operation in a Java program
  • describe the methods available for manipulating data in the Java Stream application programming interface or API
  • use Java stream methods to count the number of transactions and determine the min and max values in a collection for transactions
  • describe how to sort stream data using the collect method and Collectors class in Java
  • describe how to save, group, and partition data using the Collectors class in Java
  • collect, combine, and group stream data results in Java
  • use Java Stream methods to calculate totals and averages in a collection
  • describe how to handle exceptions with try catch and finally clauses in Java
  • catch checked and unchecked exceptions in a Java program
  • describe how to use try-with-resources statements in Java
  • describe how to throw an exception in Java
  • describe how to catch custom exceptions in Java
  • extend and throw exceptions in Java programs
  • use assertions in Java programs

Overview/Description
Java, an object-oriented programming language, is one of the most widely used development languages in the world today. It allows programmers to create objects that can interact with other objects to solve a problem. This course covers how to use Lambda built-in functional interfaces. It covers primitive and binary version of base interfaces, as well as using the unary operator functional interface. It also covers Lambda operations with the Stream application program interface or API, using map and peek, as well as search and data related methods of the Stream API. It goes on to define the purpose of Java exceptions, and explains how to use the try and throw statements and the catch, multi-catch, and finally clauses. It covers auto closing resources with a try-with-resources statement, common exception classes and categories, creating custom exceptions, and testing invariants by using assertions. This course can be used to as part of preparation for the Oracle Certified Professional, Java SE 8 Programmer II exam.

Target Audience
Programmers who have basic experience with the Java language, and who can create, compile, and execute Java programs

Java SE 8 Programming: Interfaces, Lambda Expressions, Collections, and Generics

Course Number:
jl_sepr_a02_it_enus
Lesson Objectives

Java SE 8 Programming: Interfaces, Lambda Expressions, Collections, and Generics

  • start the course
  • describe how to work with interfaces in Java
  • use default and static methods in Java interfaces
  • describe how to extend an interface in Java
  • use Java interfaces in a Java application
  • describe how to use anonymous inner classes in Java
  • describe how classes, interfaces, anonymous inner classes, and lambda expressions can be used to provide similar code functionality in Java
  • describe how to use lambda expressions in Java
  • write lambda expressions for a Java application
  • describe how to create a custom generic class using the type inference diamond
  • describe the Java Collections Framework
  • contrast the implementation of an ArrayList in Java without and with generics
  • describe how to implement a TreeSet using the Set interface in the Java Collection application programming interface or API
  • describe how to implement a TreeMap using the Map interface in the Java Collection application programming interface or API
  • describe how to implement an ArrayDeque using the Deque interface in the Java Collection application program interface or API
  • describe how to use the Comparable and Comparator interfaces to sort Java collections
  • describe how to use the builder pattern to create a Java class
  • describe how to iterate through a collection using a Lambda expression
  • describe the Stream Application Program Interface or API and how it can be used to process Java collection elements in parallel
  • describe how to call an existing method using a method reference and how methods can be chained in Java Lambda expressions
  • learn the features of Java interfaces, the inner anonymous class, and Java streams

Overview/Description
Java, an object-oriented programming language, is one of the most widely used development languages in the world today. It allows programmers to create objects that can interact with other objects to solve a problem. This course covers working with interfaces and lambda expressions. In addition, it explores creating a customer generic class, using the diamond operator to create an object, creating a collection by using an old style syntax and generics, using enumerated types, as well as implementing an ArrayList, a Set, a HashMap, and a Stack using a Deque. It also covers working with collections using the stream application program interface or API. This course can be used to as part of preparation for the Oracle Certified Professional, Java SE 8 Programmer II exam.

Target Audience
Programmers who have basic experience with the Java language, and who can create, compile, and execute Java programs

Mentoring 1Z0-809 Java SE 8 Programmer II

Lesson Objectives

Mentoring 1Z0-809 Java SE 8 Programmer II

  • Java Class Design
  • Advanced Java Class Design
  • Generics and Collections
  • Lambda Built-in Functional Interfaces
  • Java Stream API
  • Exceptions and Assertions
  • Use Java SE 8 Date/Time API
  • Java I/O Fundamentals
  • Java File I/O (NIO.2)
  • Java Concurrency
  • Building Database Applications with JDBC
  • Localization

Overview/Description
Skillsoft Mentors are available to help students with their studies for exam 1Z0-809 Java SE 8 Programmer II. You can reach them by entering a Mentored Chat Room or by using the Email My Mentor service.

Target Audience
Individuals who are studying the associated Skillsoft content in preparation for, or to become familiar with, the skills and competencies being measured by the actual certification exam.

TestPrep 1Z0-809 Java SE 8 Programmer II

Course Number:
jl_sepr_a01_tp_enus
Lesson Objectives

TestPrep 1Z0-809 Java SE 8 Programmer II

  • >

Overview/Description
To test your knowledge on the skills and competencies being measured by the vendor certification exam. TestPrep can be taken in either Study or Certification mode. Study mode is designed to maximize learning by not only testing your knowledge of the material, but also by providing additional information on the topics presented. Certification mode is designed to test your knowledge of the material within a structured testing environment, providing valuable feedback at the end of the test.

Target Audience
Individuals seeking practice in a structured testing environment, covering the skills and competencies being measured by the vendor certification exam.

Prerequisites: none

Close Chat Live